home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Integers / MinMax.h < prev    next >
Text File  |  1997-06-28  |  253b  |  19 lines

  1. // MinMax.h
  2.  
  3. #ifndef MinMax_h
  4. #define MinMax_h
  5.  
  6. template < class Value >
  7. inline Value Min( Value a, Value b )
  8.   {
  9.     return ( a <= b ) ? a : b;
  10.   }
  11.  
  12. template < class Value >
  13. inline Value Max( Value a, Value b )
  14.   {
  15.     return ( a >= b ) ? a : b;
  16.   }
  17.  
  18. #endif
  19.